home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / qwhite10.arc / DVANSI.TEC < prev    next >
Text File  |  1990-08-16  |  2KB  |  43 lines

  1. ID:AN Programs Requiring ANSI.SYS in DV
  2. Quarterdeck Technical Note
  3. by Stan Young
  4.  
  5. While you may load the ANSI driver in your CONFIG.SYS file, the 
  6. ANSI driver is not accessible to programs running in DESQview due
  7. to the way ANSI is written.
  8.  
  9. Therefore, DESQview provides a replacement ANSI driver called 
  10. DVANSI.COM.  You should try loading this program in the window 
  11. before loading the program you are having the problem with.
  12.  
  13. The easiest way to do this is to create a DOS batch file called 
  14. START.BAT that has as the first line DVANSI and as the second 
  15. line the command normally used to start your program.  Assuming 
  16. the program was called "MYPROG" the batch file would read like 
  17. this:
  18.  
  19.      DVANSI
  20.      MYPROG  {with a blank line after MYPROG}
  21.  
  22. Then put this batch file in the directory where you normally 
  23. start the program and run Change a Program and set the option 
  24. marked "Program:" to run the batch file (START).  Then when the 
  25. window is opened, the batch file will load DVANSI and then the 
  26. program.
  27.  
  28. If you require the loading of special ANSI drivers, or would 
  29. prefer to use DOS's ANSI driver and you are running DESQview 
  30. version 2.2 or greater, there is a program (DEVICE.COM) on the 
  31. DESQview disk that will allow this.  To load the DOS ANSI driver 
  32. using DEVICE.COM, assuming the driver was in the C:\DOS 
  33. directory, your batch file would look as follows:
  34.  
  35.      DEVICE C:\DOS\ANSI.SYS
  36.      MYPROG
  37.  
  38. If you need further help in creating batch files, consult your 
  39. DOS manual.
  40.  
  41.         Copyright (C) 1990 by Quarterdeck Office Systems
  42.              * * *   E N D   O F   F I L E    * * * 
  43.